Adam Richardson's Site

Table of Contents

<2023-04-04 Tue>

Remove All Containers

docker rm -vf $(docker ps -a -q)

Remove All Images

docker rmi -f $(docker images -a -q)

Clean the System

docker system prune